Assignemnt #129 and 130th program
Code
///Name: Derrick Andreasen
///Period: 7
///Program name: 130th Program
///File name: Hund29prog.java
///Date Finished:5/23/2016
import java.net.URL;
import java.util.Scanner;
public class Hund29prog {
public static void main(String[] args) throws Exception {
URL mURL = new URL("http://llhscp-da.neocities.org/intro/printing/4/prog4.html");
Scanner webIn = new Scanner(mURL.openStream());
while(webIn.hasNext())
{
String Line = webIn.nextLine();
System.out.println(Line);
}
webIn.close();
}
}
Picture of the output